Skip to content

Conversation

@drculhane
Copy link
Contributor

@drculhane drculhane commented Dec 19, 2025

Closes #5132. Closes #5149.

  • The binops in pdarrayclass.py now give a RuntimeWarning or a Floating Point Error (or nothing) if / or // cause a divide-by-zero, depending on the "divide" setting of ak.errstate.

  • Because the RuntimeWarning surfaced an issue in arctan2, I've rewritten that function somewhat. It now has an "out" parameter matching numpy, and uses the "where" parameter correctly.

  • Most of the original arctan2 function remains as _arctan2_, because (subjective opinion here) I think that calling it as a separate function improves the readability of the code.

  • In doing this rewriting, I removed some mypy ignores that are no longer needed.

  • I rewrote the unit tests for arctan2 to use our newer assert functions. I think this cleans up that code significantly. In the cases that use "where," I check both the returned result, and the returned "out" pdarray, since they should match.

Update:

Since other tests were also causing divide-by-zero errors, I extended the divide-by-zero check to use ak.errstate. I also bypassed additional tests in datetime once a divide-by-zero occurred, because they would also cause errors.

Copy link
Contributor

@ajpotts ajpotts left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work!

@Bears-R-Us Bears-R-Us deleted a comment from codecov-commenter Jan 12, 2026
# metrics["ak_supported"] += 1
# except RuntimeWarning:
# continue # this test can cause divide-by-zero, which would
# # also cause a following test to fail, so skip it
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you remove the commented out code please?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ooops. Done.

x1 = int(x1)
if np.isscalar(x2):
if isinstance(x2, (bool, np.bool_)):
x1 = int(x2)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here you have x1 = int(x2) but it should be x2 = int(x2).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep. Good catch.

if np.isscalar(x1) and np.isscalar(x2):
if out is None:
return nparctan2(x1, x2) if where is None or where is True else np.float64(1.0)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does this return np.float64(1.0)? If it isn't possible to compute a sensible value I think we should just throw an error.

Copy link
Contributor Author

@drculhane drculhane Jan 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I picked 1.0 arbitrarily, because numpy allows this, but returns a random value. Here's an example:

>>> import numpy as np
>>> x1 = 5.0 ; x2 = 7.0
>>> np.arctan2(x1,x2,where=False)
np.float64(0.0)
>>> np.arctan2(x1,x2,where=False)
np.float64(5.0)
>>> np.arctan2(x1,x2,where=False)
np.float64(5.0)

I can change this to throw an error, certainly. I didn't do that at first, since numpy doesn't.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

ak.arctan2 uses the "where" parameter incorrectly. floor division by zero doesn't match numpy

2 participants